Loading TOC...

DELETE /manage/v2/tasks/{id}

Summary

This resource address deletes the named task from the named group.

URL Parameters
group-id The id or name of the group to which the task belongs. The group must be specified by this parameter or by the group-name property in the request payload. If it is specified in both places, the values must be the same.
format The format of the posted data. Can be either html, json, or xml (default). This parameter is not meaningful with view=edit. This value overrides the Accept header if both are present.
Request Headers
accept The expected MIME type of the response. If the format parameter is present, it takes precedence over the Accept header.

Response

Upon successful completion, MarkLogic Server returns status code 204 (No Content). If the task does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.

Required Privileges

This operation requires one of the following:

Example


curl -X DELETE --anyauth -u admin:admin -H "Content-Type:application/json" \
http://localhost:8002/manage/v2/tasks/15443907690397240566?group-id=Default

==>  Deletes the task, "15443907690397240566," from the Default group.
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.